home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / smail-3.1.28 / guide / admin / Makefile < prev    next >
Encoding:
Makefile  |  1992-09-20  |  817 b   |  48 lines

  1. #!/bin/make -f
  2. # @(#)guide/admin/Makefile    1.7 9/20/92 16:43:28
  3. # Makefile for the smail administration guide
  4. #
  5. #    Copyright (C) 1987, 1988 Ronald S. Karr and Landon Curt Noll
  6. #    Copyright (C) 1992  Ronald S. Karr
  7. # See the file COPYING, distributed with smail, for restriction
  8. # and warranty information.
  9.  
  10. SHELL=/bin/sh
  11. MAKE=make
  12. GET=sccs get
  13. AR=ar
  14. LINT=lint
  15. CLEAN=sccs clean
  16. MK=${MAKE} -${MAKEFLAGS} SHELL=${SHELL}
  17. SRC_PREFIX=
  18.  
  19. ROOT=../..
  20. PARTS=intro install config cookbook utilities
  21. MISC=Makefile README
  22. SRC=${PARTS} ${MISC}
  23. NROFF=nroff
  24. TROFF=ptroff
  25.  
  26. all:
  27.  
  28. nroff:    ${PARTS}
  29.     @${NROFF} -ms ${PARTS}
  30.  
  31. troff:    ${PARTS}
  32.     ${TROFF} -ms ${PARTS}
  33.  
  34. sources: ${SRC}
  35.  
  36. ${SRC}:
  37.     ${GET} $@
  38.  
  39. names:
  40.     @for i in ${SRC}; do echo ${SRC_PREFIX}$$i; done
  41.  
  42. install depend clean clobber:
  43.  
  44. nuke: clobber
  45.     -${CLEAN}
  46.     -${GET} Makefile
  47.